projects
/
project
/
bcm63xx
/
atf.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9ae424
)
ti: k3: common: Do not release processor control on startup
author
Andrew F. Davis
<
[email protected]
>
Mon, 11 Feb 2019 20:44:46 +0000
(14:44 -0600)
committer
Andrew F. Davis
<
[email protected]
>
Mon, 11 Feb 2019 22:13:30 +0000
(16:13 -0600)
ATF should be the only host needing to control a processor that it has
started. ATF will need this control to stop the core later. Do not
relinquish control of a core after starting the core.
Signed-off-by: Andrew F. Davis <
[email protected]
>
plat/ti/k3/common/k3_psci.c
patch
|
blob
|
history
diff --git
a/plat/ti/k3/common/k3_psci.c
b/plat/ti/k3/common/k3_psci.c
index afe465e56b65dd5b6f59e592782e96997eb190ba..f66f12a3d89dd060120bb02d72e7db4ad9effc92 100644
(file)
--- a/
plat/ti/k3/common/k3_psci.c
+++ b/
plat/ti/k3/common/k3_psci.c
@@
-71,12
+71,6
@@
static int k3_pwr_domain_on(u_register_t mpidr)
return PSCI_E_INTERN_FAIL;
}
- ret = ti_sci_proc_release(proc);
- if (ret) {
- /* this is not fatal */
- WARN("Could not release processor control: %d\n", ret);
- }
-
return PSCI_E_SUCCESS;
}